home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / misc / emu / arosdev.lha / AROS / rom / exec / debug.c < prev    next >
C/C++ Source or Header  |  1997-01-09  |  857b  |  51 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: debug.c,v 1.3 1997/01/01 03:46:08 ldp Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8. #include <proto/exec.h>
  9.  
  10. /*****************************************************************************
  11.  
  12.     NAME */
  13.  
  14.     AROS_LH1(void, Debug,
  15.  
  16. /*  SYNOPSIS */
  17.     AROS_LHA(unsigned long, flags, D0),
  18.  
  19. /*  LOCATION */
  20.     struct ExecBase *, SysBase, 19, Exec)
  21.  
  22. /*  FUNCTION
  23.  
  24.     INPUTS
  25.  
  26.     RESULT
  27.  
  28.     NOTES
  29.  
  30.     EXAMPLE
  31.  
  32.     BUGS
  33.  
  34.     SEE ALSO
  35.  
  36.     INTERNALS
  37.  
  38.     HISTORY
  39.     29-10-95    digulla automatically created from
  40.                 exec_lib.fd and clib/exec_protos.h
  41.  
  42. *****************************************************************************/
  43. {
  44.     AROS_LIBFUNC_INIT
  45.     AROS_LIBBASE_EXT_DECL(struct ExecBase *,SysBase)
  46.  
  47.     aros_print_not_implemented ("Debug");
  48.  
  49.     AROS_LIBFUNC_EXIT
  50. } /* Debug */
  51.